string concatenation

英 [strɪŋ kənˌkætəˈneɪʃn] 美 [strɪŋ kənˌkætəˈneɪʃn]

网络  字符串连接; 字符串串联; 连结字符串; 字串接合; 字符串連接

计算机



双语例句

  1. This time, a string concatenation has occurred within the same method, and the input parameter is now bound to a String type argument at function execution time.
    这次,相同方法内发生了字符串串联,并且现在输入参数在函数运行时受到String类自变量的限制。
  2. For any given string, the correct value is the concatenation of
    对于任意给定的字符串,正确值是由下列值并置而成的
  3. Variables can be injected into the query using string concatenation in PHP.
    在PHP中可以使用字符串连接将变量插入到查询中。
  4. Use parameterized queries or stored procedures to access a database as opposed to using string concatenation.
    使用参数化查询或存储过程来访问数据库,而不是使用字符串连接。
  5. As part of the preprocessor, C automatically combines those two strings in a capability called string literal concatenation.
    作为预处理程序的一部分,C会自动地使用一个名为字符串串联的功能将这两个字符串组合在一起。
  6. To keep it simple, in our example we construct this XML document by string concatenation; however, in a real-life project, you might need to use a Document Object Model ( DOM) or a similar XML API.
    为了简单起见,我们的例子通过连接字符串来构造XML文档;不过,在现实的项目中,您可能需要使用DocumentObjectModel(DOM)或类似的XMLAPI。
  7. The xsl: value-of instruction automatically returns the string value of a node that is a concatenation of all text node descendants.
    value-of指令自动返回节点的字符串值,该值将所有文本节点后代串联起来。
  8. Be aware that simple string concatenation can be a dangerous way to construct XML documents in general ( see Resources for an article that expands on this point).
    注意,使用简单的字符串连接构造XML文档一般来说比较危险(参考资料中的一篇文章解释了这一点)。
  9. The print instruction emits the argument to standard output ( stdout), and concat implements string concatenation.
    print指令发出标准输出(stdout)的参数,且concat实现字符串连接。
  10. Also notice the query in which we use string concatenation to add the$ name parameter to the query.
    还要注意查询,其中使用字符串连接来向查询添加$name参数。
  11. The printk function relies on a feature of the C language called string literal concatenation.
    printk是基于C语言中一个名为字符串逐字连接的特性。
  12. In the representation on the right, a disjointed string is combined using a concatenation node.
    在右侧的表示方式中,离散的字符串通过连接节点组合在一起。
  13. If you prefer not to use a long string concatenation statement like this, an alternative is to use the string formatting operator which enables you to have an expression like
    如果不喜欢使用这么长的字符串连接语句,另一种方法是使用字符串格式操作符,可以使用下面这样的表达式
  14. It then uses string concatenation to create a complete, well-formed XML document from it.
    然后使用字符串连接创建完整的、结构良好的XML文档。
  15. We also have the added problem of duplicating the string concatenation using join(), which adds an extra second.
    我们还添加了使用join()复制连接字符串的问题,这会额外增加1秒的时间。
  16. The String version of concatenation requires strings you want to join to be copied to a new location, which is an O ( n) operation.
    String版本的连接操作要求将需要连接的两个字符串复制到新位置,这是一种O(n)操作。
  17. You'll also find some simplifications from C, which include string concatenation, associative array elements, and aggregation operators.
    您还看到从C语言带来的简化,其中包括字符串连接、关联数组元素和合并操作符。
  18. You can build a HQL WHERE clause using either binding parameters or simple string concatenation; the decision impacts on performance.
    既可以使用绑定参数构造HQL的WHERE子句,也可以使用字符串拼接的方法,该决定对性能会有一定影响。
  19. We are not using the unified programming model offered by WCF and the URL is hacked together using string concatenation.
    我们并没有使用WCF提供的统一编程模型,而且URL也是通过字符串连接搞出来的。
  20. If a number is used in a string concatenation expression, for example, the number is converted to a string first.
    例如,如果一个数字用在一个字符串连接表达式中,数字就会先转换为字符串。